home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / wiggi_wa.swf / scripts / DefineSprite_110 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  267 b   |  14 lines

  1. stop();
  2. this.onEnterFrame = function()
  3. {
  4.    bl = _root.getBytesLoaded();
  5.    bt = _root.getBytesTotal();
  6.    perc = bl / bt * 100;
  7.    bar.bar._xscale = perc;
  8.    if(perc >= 100)
  9.    {
  10.       this.gotoAndPlay("goplay");
  11.       delete this.onEnterFrame;
  12.    }
  13. };
  14.